* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Home Page Code Starts Here */
header {
  position: relative;
  width: 100%;
  height: 510px;
  /* border: 1px solid #000; */
}

header:before {
  content: "";
  position: absolute;
  width: 37%;
  height: 560px;
  right: 7%;
  border-radius: 0 50px 0 0;
  z-index: -1;
}

header nav {
  width: 100%;
  height: 70px;
  background-color: white;
  /* border: 1px solid #000; */
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 1111111;
}

header nav .logo {
  display: flex;
  align-items: center;
}

header nav .logo img {
  margin-top: 10px;
  width: 200px;
}

header nav .logo ul {
  display: flex;
  align-items: center;
  margin-left: 270px;
}

header nav .logo ul li {
  list-style: none;
  padding: 3px 10px;
  margin-right: 18px;
}

header nav .logo ul li a {
  text-decoration: none;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s linear;
}

header nav .logo ul li:nth-last-child(1) {
  background: rgba(1, 28, 1, 0.431372549);
  border-radius: 10px;
  padding: 1px 13px;
}

header nav .logo ul li:nth-last-child(1) a {
  color: white;
}

header nav .logo ul li:nth-last-child(1) a i {
  margin-left: 5px;
}

header nav .logo ul li a:hover {
  color: rgba(99, 99, 99, 0.354);
}

header nav .contact {
  display: flex;
  align-items: center;
}

header nav .contact li {
  display: flex;
  align-items: center;
  padding: 3px 10px;
}

header nav .contact li a {
  color: white;
  font-size: 13px;
  margin-right: 10px;
  text-decoration: none;
}

header nav .contact li:nth-last-child(1) {
  background: white;
  border-radius: 10px;
  padding: 2px 13px 1px 13px;
  width: 100px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
}

.Abtslider {
  width: 100%;
  margin-top: -300px;
}
.Abtslider .title {
  width: 100%;
  text-align: center;
  font-size: 90px;
  font-family: "Bungee Outline", cursive;
}

.background {
  display: flex;
  min-height: 100vh;
}

.container {
  flex: 0 1 700px;
  margin: auto;
  padding: 10px;
}

.screen {
  position: relative;
  background: #3e3e3e;
  border-radius: 15px;
}

.screen:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  bottom: 0;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.screen-header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #4d4d4f;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.screen-header-left {
  margin-right: auto;
}

.screen-header-button {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 3px;
  border-radius: 8px;
  background: white;
}

.screen-header-button.close {
  background: #ed1c6f;
}

.screen-header-button.maximize {
  background: #e8e925;
}

.screen-header-button.minimize {
  background: #74c54f;
}

.screen-header-right {
  display: flex;
}

.screen-header-ellipsis {
  width: 3px;
  height: 3px;
  margin-left: 2px;
  border-radius: 8px;
  background: #999;
}

.screen-body {
  display: flex;
}

.screen-body-item {
  flex: 1;
  padding: 50px;
}

.screen-body-item.left {
  display: flex;
  flex-direction: column;
}

.app-title {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #ea1d6f;
  font-size: 26px;
}

.app-title:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 25px;
  height: 4px;
  background: #ea1d6f;
}

.app-contact {
  margin-top: auto;
  font-size: 12px;
  color: #c6c2c2;
}

.app-form-group {
  margin-bottom: 15px;
}

.app-form-group.message {
  margin-top: 40px;
}

.app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}

.app-form-control {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #666;
  color: #ddd;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.app-form-control::-moz-placeholder {
  color: #666;
}

.app-form-control::placeholder {
  color: #666;
}

.app-form-control:focus {
  border-bottom-color: #ddd;
}

.app-form-button {
  background: none;
  border: none;
  color: #ea1d6f;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.app-form-button:hover {
  color: #b9134f;
}

@media screen and (max-width: 520px) {
  .screen-body {
    flex-direction: column;
  }
  .screen-body-item.left {
    margin-bottom: 30px;
  }
  .app-title {
    flex-direction: row;
  }
  .app-title span {
    margin-right: 12px;
  }
  .app-title:after {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .screen-body {
    padding: 40px;
  }
  .screen-body-item {
    padding: 0;
  }
}
.footer {
  width: 100%;
  height: 800px;
  background-color: #182a22;
}

.footer .footercont h1 {
  color: white;
  padding-top: 90px;
  text-align: center;
  font-size: 70px;
}

.footer .footercont a {
  text-decoration: none;
}

.footer .footercont .btn-outline-light {
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  display: block;
  padding: 17px;
  width: 280px;
  border-radius: 30px;
  border: 1px solid white;
  font-size: 30px;
  color: white;
  background: none;
  cursor: pointer;
}

.footer .footercont .btn-outline-light:hover {
  box-shadow: 5px 5px rgb(123, 123, 120);
  background: white;
  color: black;
  transition: 0.5s;
}

.footer .contactdetails .line {
  width: 200px;
  height: 1px;
  margin-top: 180px;
  margin-left: 50px;
  background-color: white;
  display: inline-block;
}

.footer .contactdetails .line h4 {
  color: white;
  padding-top: 10px;
}

.footer .contactdetails .line p {
  color: white;
  margin-top: 5px;
}

.footer .contactdetails .line2 {
  width: 200px;
  height: 1px;
  margin-top: 180px;
  margin-left: 80px;
  background-color: white;
  display: inline-block;
}

.footer .contactdetails .line2 h4 {
  color: white;
  padding-top: 10px;
}

.footer .contactdetails .line2 p {
  color: white;
  margin-top: 5px;
}

.footer .contactdetails .line3 {
  width: 200px;
  height: 1px;
  margin-top: 180px;
  margin-left: 80px;
  background-color: white;
  display: inline-block;
}

.footer .contactdetails .line3 h4 {
  color: white;
  padding-top: 10px;
}

.footer .contactdetails .line3 p {
  color: white;
  margin-top: 5px;
}

.footer .contactdetails .line4 {
  width: 200px;
  height: 1px;
  margin-top: 180px;
  margin-left: 80px;
  background-color: white;
  display: inline-block;
}

.footer .contactdetails .line4 h4 {
  color: white;
  padding-top: 10px;
}

.footer .contactdetails .line4 p {
  color: white;
  margin-top: 5px;
}

.footer .contactdetails .line5 {
  width: 200px;
  height: 1px;
  margin-top: 180px;
  margin-left: 80px;
  background-color: white;
  display: inline-block;
}

.footer .contactdetails .line5 h4 {
  color: white;
  padding-top: 10px;
}

.footer .contactdetails .line5 p {
  color: white;
  margin-top: 5px;
}

.footer .copyright {
  color: white;
  margin-top: 200px;
  margin-left: 50px;
}

.footer .copyright p {
  display: inline-block;
}

.footer .copyright .dhanraj {
  float: right;
  margin-right: 70px;
}/*# sourceMappingURL=Contact Us.css.map */